home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / include / amparam.h < prev    next >
Text File  |  1990-07-19  |  327b  |  18 lines

  1. /*
  2. **    parameters for trans, getreq and putrep are given to the kernel
  3. **    in a Trpar struct
  4. */
  5.  
  6. typedef struct
  7. {
  8.     header *    p_hdr;    /* header pointer */
  9.     bufptr        p_buf;    /* buffer pointer */
  10.     unshort        p_cnt;    /* character count */
  11. } Param;
  12.  
  13. typedef struct
  14. {
  15.     Param    tp_par[2];
  16.     unshort tp_maxloc;    /* trans locate timeout */
  17. } Trpar;
  18.